From 3b6af723d8ca78f277a06183eb136ae4d61e23d6 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Wed, 5 Apr 2006 20:31:31 +0000 Subject: [PATCH] Add missing brackets to comparison ...isdigit(). --- gpsbabel/vecs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/vecs.c b/gpsbabel/vecs.c index 37a56c3aa..e0215cfb9 100644 --- a/gpsbabel/vecs.c +++ b/gpsbabel/vecs.c @@ -594,7 +594,7 @@ assign_option(const char *module, arglist_t *ap, const char *val) case 'N': case 'n': c = "0"; break; default: - if isdigit(*c) { + if (isdigit(*c)) { if (*c == '0') c = "0"; else c = "1"; } -- 2.30.2